@charset "UTF-8";

body{
    background-color: lavender;
    font-family: "Raleway", sans-serif;
    margin: 0 5%;
    color: #7c5295;
    font-size: 17px;
}

header {
  margin-top: 0;
  padding: 1em 1em 2em 1em;
  text-align: center;
  text-shadow: .05em .05em .05em gray;
  background: url(Images/barbedwire.png) center top repeat-x;
  background: 
    url(Images/barbedwire.png) left top repeat-y, 
    url(Images/barbedwire.png) right top repeat-y;
  background-color: rgba(255,255,255,.5);
  -webkit-mask-image: -webkit-gradient(linear, center top, center bottom, 
			color-stop(0.50,  rgba(0,0,0,1)),
			color-stop(1.00,  rgba(0,0,0,0)));
  mask-image: -webkit-gradient(linear, center top, center bottom, 
			color-stop(0.50,  rgba(0,0,0,1)),
			color-stop(1.00,  rgba(0,0,0,0)));
  
}

h2{
    color: #7c5295;
    text-shadow: .05em .05em .05em gray;
}

.Container{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 150px;

}

.imgContainer {

    position: relative;
}

.purpleBG{
    position: absolute;
    top: 0;
    left: -50px;
    width: 450px;
    height: 630px;
    background-color:#7c5295;
    z-index: 1;
    border-radius: 5px;


}

.bigImg {
    position: relative;
    z-index: 2;
    width: 80px;
    height: auto;
    border-radius: 5px;

}

.textRow {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
    font-size: 18px;
}

.bullet {
    width: 10px;
    height: 10px;
    background-color:#7c5295;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.bulletText {
    margin: 2;
    font-size: 20px;
}

.roman {
    list-style-type: upper-roman;
    display: inline-block;
    text-align: left;
    font-size: 20px;

}

.textContainer {
    flex: 1;
}

a:link {
    color: darkorchid;
}

a:visited {
    color: #b061c1;
}

a:focus, a:hover {
    color: #c700f2;
    
}

footer {
    border-top: 1.5px solid darkorchid;
}