* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
body {
    background-image: url('../images/backgrund.jpg');
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 90%;
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    padding: 20px 60px;
    color: black;
}
header nav {
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header nav a {
    font-size: 22px;
    color: black;
    text-decoration: none;
    position: relative;
}
header nav a::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    background-color: black;
    width: 0;
    height: 2.5px;
    transition: .3s;
}
header nav a:hover::before {
    width: 100%;
}
.main {
    display: flex;
    align-items: center;
}
#menu-icon {
    font-size: 35px;
    color: black;
    cursor: pointer;
    z-index: 10001;
    display: none;
}
.footer{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #263238;
    text-align: center;
    color: #f4f4f4;
}
.icons{
    padding-top: 1rem;
}
.icons a{
    text-decoration: none;
    font-size: 2rem;
    margin: 0.5rem;
    color: #f4f4f4;
}
.company-name{
    font-size: 1.4rem;
    margin-top: 0.5rem;
}
@media(max-width: 500px){
    html{
        font-size: 50%;
    }
}
@media(min-width: 501px)and(max-width: 768px){
    html{
        font-size: 50%;
    }
}
@media (max-width: 1090px) {
    #menu-icon {
        display: block;
    }
    nav {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 270px;
        height: 47vh;
        background: #F433FF;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        border-radius: 10px;
        transition: all .50s ease;
    }
    nav a {
        display: block;
        margin: 12px 0;
        padding: 0 25px;
        transition: all .50s ease;
    }
    nav a:hover {
        color: #fff;
        transform: translateY(5px);
    }
    nav a.active {
        color: #fff;
    }
    nav.open {
        left: 2%;
    }
}
