html, body{
    height: 100%;
}

body{
    background-color: rgb(104.5, 93.5, 217.5);
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}


header{
    position: fixed;
    width: 100%;
    top: 0px;
    background: rgb(1, 49, 180);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    font-size: calc(0.5rem + 2vw);
    height: 15%;

}
header p{
    display: flex;
    justify-content: space-between;
    width: 85%;
    margin-right: 5%;
}

header a:hover{
    background-color: rgb(31, 71, 182);
}

#icons {
    cursor: pointer;
    display: none;
}

@media (max-width: 710px){
    #icons{
        display: block;
    }
    #icons:before{
        content: "\2630";
    }
    .active #icons:before{
        content: "\2715";
    }
    header p{
        position: fixed;
        right: -100%;
        top: 7%;
        flex-direction: column;
        background: rgb(1, 49, 180);
        width: 15%;
        text-align: center;
        transition: 0.25s;
    }
    header a{
        font-size: 75%;
    }
    header{
            margin-left: -3%;
    }
    header a:hover{
        background-color: rgb(31, 71, 182);
    }
    header.active p{
        left: 85%;
    }
}

header img{
    width: 12%;
    height: 110%;
    background-color: black;
    border-radius: 50%;
    float: left;
}
a{
    color: rgb(255, 218, 218);
    text-decoration: none;
    padding: 1%;
}

a:nth-child(4){
    color: rgb(100, 97, 97);
}

section{
    margin: 0 15%;
    background-color: rgb(193, 176, 243);
    flex-grow: 1;
}
section p{
    margin: 2% 2%;
    font-size: 80%;
}

section h1{
    margin: 2% 2%;
    font-size: 40px;
    text-align: center;

}
section h3{
    margin: 2% 2%;
    font-size: 30px;
    margin-left: 1%;
}

footer{
    justify-content: space-between;
    padding: 10px;
    background-color: rgb(208, 138, 255);
    display:flex;
}
footer a {
    color: rgb(0, 0, 0);
}
