:root{
    --blue:rgb(21, 25, 45);
    --one: rgb(2, 23, 29);
}
body{
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    width: 100vw;
    justify-content: center;
    align-items: center;
    background-image: url('../pictures/backgrounds/bck-starnight\ black.gif'); 
    background-position: center;
    /* Ensures the image covers the full screen */
    color: rgb(215, 214, 221);
    font-family: monospace;
}
section{
    background-color:  rgb(11, 21, 24);
    width: 70vw;

    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
h1{
    font-size: 54px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  
}
hr{
    width: 80%;
}
h3{
    font-size: 27px;
    margin: 8px;
    background-color: #9c91c2;
    padding: 8px;
    border-radius: 4px;
    text-align: center;

}
p{
    font-size: 16px;
 
}
li{
    font-size: 16px;
}
img{
    border-radius: 23px;
    
    max-width: 400px;
    height: 30vh;
    padding: 8px;
    background: #ffffff;
    margin: 0;
    margin: 0;
}
a{
    padding: 0;
    margin: 0;
    color:  var(red);
    text-decoration: none;
}
a:hover{
    color: rgb(243, 191, 204);
    transition: ease 1s;
}
.row{
    display: flex;
    flex-direction: row;
}
.box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   
    
}
.neck{
    margin: 0;
   border: solid 4px white ;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    
}
.base{
    margin: 0;
    padding: 8px;
    background: #ffffff;
    height: 10px;
    width: 30%;
border-top-left-radius:8px ;
border-top-right-radius:8px ;

}
.con{
    border: solid rgb(64, 98, 107) 2px;
    background-color: rgb(64, 98, 107);
    border-radius: 4px;
    padding: 12px 20px;
    max-width: 600px;
    text-align: center;
}
.txt{
   
    text-align: left;
}
@media (max-width: 600px) {
    .row{
        display: flex;
        flex-direction: column;
        background-color: rgba(59, 80, 80, 0.574);
        border-radius: 8px;
   
    }
    .box{display: none;}
}

