body{

    margin: 0;
    padding: 0;
}

header{
    position: fixed;
    width: 100%;
    height: 20vh;
    
    left: 0;
    top: 0;

    background-color: rgba(146, 73, 17, 0.752);

    display: flex;
    justify-content: space-around;
}

header h1{
    width: 100%;
    height: auto;

    display: flex;
    align-items: center;
    justify-content: center;
    
    font-size: 30px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

header img{
    width: auto;
    height: 18vh;

    border-radius: 90%;
    border: none;

    margin: 0.5% 5%;
}

main{
    width: 100%;
    height: max-content;

    margin-top: 22vh;
    position: fixed;
}

header a{
    font-size: 15px;
    width: 10%;
    

    display: flex;
    align-items: center;
    justify-content: center;
}

#content{
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: space-evenly;

    height: auto;

    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

#content h3{
    font-size: 20px;
}
#content p{
    font-size: 17px;
}

iframe{
    z-index: -10;
}


@media (max-width: 500px) {
    body{
        margin: 0;
        padding: 0;
    }
    
    header{
        position: fixed;
        z-index: 50;
        width: 100%;
        height: 13vh;
        
        left: 0;
        top: 0;
    
        background-color: rgba(146, 73, 17, 0.752);
    
        display: flex;
        justify-content: space-around;
    }
    
    header h1{
        width: 100%;
        height: auto;
    
        display: flex;
        align-items: center;
        justify-content: center;
        
        font-size: 25px;
        font-family: Verdana, Geneva, Tahoma, sans-serif;

        text-align: center;
    }

    header a{
        font-size:10px;

    display: flex;
    align-items: center;
    justify-content: center;
    }
    
    header img{
        width: auto;
        height: 12vh;
    
        border-radius: 90%;
        border: none;
    
        margin: 0.5% 5%;
    }
    
    main{
        position: fixed;

        width: 100%;
    
        margin-top: 12vh;
        padding: 0;
    }

    main a p{
        font-size: 10px;
    }
    
    #content{
        display: block;
        text-align: center;
    
        height: auto;

        padding: 0 0.5%;
        z-index: 50;
    
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    }
    
    #content h3{
        font-size: 18px;
    }
    #content p{
        font-size: 15px;
    }
  }