* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: din-2014, sans-serif;
    text-align: center;
    background: #ffffff;
    color: #121e27;
    font-size: 16px;
}

.logo-background {
    background-image: url(/img/logo.svg);
    height: 16.5rem;
    margin: 3.25rem 0 0 3.125rem;
    background-repeat: no-repeat;
}

.face {
    display: flex;
    position: relative;
    width: 18.75rem;
    height: 18.75rem;
    margin: 0 3% 0 -15%;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #ffd900;
    border: 1px solid #121e27;
    float: right;
}

.face::before {
    content: '';
    position: absolute;
    top: 12.5rem;
    width: 9.375rem;
    height: 0.625rem;
    background: #121e27;
    border-bottom-left-radius: 0.625rem;
    border-bottom-right-radius: 0.625rem;
    transition: 0.5s;
}

.face:hover::before {
    top: 13.125rem;
    width: 9.375rem;
    height: 3.125rem;
    border-bottom-left-radius: 3.125rem;
    border-bottom-right-radius: 3.125rem;

}

.eyes {
    position: relative;
    margin: -4rem 0 0 1rem;
}

.eyes .eye {
    position: relative;
    width: 5.625rem;
    height: 5.625rem;
    display: inline-block;
    background: #ffffff;
    margin: 0 0.9375rem;
    border-radius: 50%;
    border: 1px solid #121e27;
}

.eyes .eye::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 1.875rem;
    transform: translate(-50%, -50%);
    width: 3.75rem;
    height: 3.75rem;
    background: #121e27;
    border-radius: 50%;
}

.text {
    display: flex;
    justify-content: center;
    justify-items: center;
    text-align: center;
    margin: -16.5rem auto 6.25rem auto;
    font-size: 7.5rem;
    width: 50%;
}

h3 {
    letter-spacing: 5px;
}

.info {
    padding: 3.125rem;
    background: #000047;
    color: #ffffff;
}

.info h1 {
    margin: 0;
    font-size: 3.125rem;
    text-align: center;
    text-transform: uppercase;
}

.info svg {
    margin-left: 25%;
    width: 16.25rem;
    fill: #ffffff;
    float: left;
}

.info .info-text {
    margin-right: 20%;
}

.home {
    margin-top: 3rem;
}

.home a {
    text-decoration: none;
    font-size: 1.875rem;
    letter-spacing: 0.3125rem;
    color: #121e27;
}

.home a:hover {
    text-decoration: underline;
    color: #121e27;
}

@media (min-width: 768px) and (max-width: 1024px){
    
    .logo-background{
        height: 160px;
        margin: 6.25rem 0 0 3.125rem;
    }

    .face{
        margin: -5% 3% 0 -15%;
    }

    .text{
        margin: -12.5rem auto 6.25rem auto;
    }

    h3 {
        letter-spacing: 2px;
    }
    
    .info {
        padding: 2.125rem;
        background: #000047;
        color: #ffffff;
    }
    
    .info h1 {
        margin: 0;
        font-size: 2.5rem;
        text-align: center;
        text-transform: uppercase;
    }
    
    .info svg {
        margin-left: 20%;
        width: 16.25rem;
        fill: #ffffff;
        float: left;
    }
    
    .info .info-text {
        margin-right: 15%;
    }
}

@media (min-width: 1880px) and (max-width: 3839px){
    .logo-background{
        height: 350px;
        margin: 6.25rem 0 0 3.125rem;
    }
    
    .text{
        margin-top: -360px;
        font-size: 150px;
    }

    .face{
        margin: 1% 6% 0 -15%;
    }

    .home{
        margin-top: 100px;
    }
}