*{
    margin: 0;
    padding: 0;
    box-sizing:border-box;
}

nav{
    padding: 10px;
    text-align: center;
    background: black;
    position: sticky;
    top:-1px;
    
}

body{

background-image: url('https://community.adobe.com/legacyfs/online/1516782_Clouds.gif');
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}

nav a{
    text-decoration: none;
    font-size: 3vw;
    color: yellow;
    margin: 0px 30px;
}

.flexbox{
    display: flex;
    justify-content: space-between;
    padding: 16px;
    gap:20px;

}

section h2{
    text-align: center;
    color:yellow;
    font-size: 3em;
}
#name{
    
    font-family: cursive;
    text-shadow: 0px 0px 10px white;
}

img{
   width:100%;
   height: 200px;
   object-fit: cover; 

}

.btn{
    background-color: yellowgreen;
    padding: 10px;
    margin-top: 20px;
    display:block;
    width:fit-content;
    border-radius:10px;
    color: black;
    text-decoration: none;
    }

.btn:active{
    box-shadow: 0px 0px 5px;
    
}

.qbox{
    
    padding: 20px;
    background-color: goldenrod;
    width: fit-content;
    margin: auto;
    font-family: "Lucida Console", "Courier New", monospace;
    border-radius: 5%;
    box-shadow: 10px 5px black;
    
}

.qbox button{
    padding: 10px;
    border-radius: 5px;
    margin: 10px;
    border: 0;
}

.flexbox button{
    position:fixed;
    background-color: rgba(121, 202, 121, 0.774);
    right: 10px;
    padding: 10px;
    border-radius: 5px;
    border:0;
}
