
body {
    margin: 0;
    padding: 0;
    background-color: #fff;
}

#logo_holder,
#content_holder {
    min-height: 50vh;
    display: flex;
    margin: 0;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
#logo_holder {
    min-height: 40vh;
}
#logo_holder svg {
    width: 240px;
    height: auto;
    animation: fadeIn 1000ms ease;
    -webkit-animation: fadeIn 1000ms ease;
}

#content_holder {
    min-height: 60vh;
    background: #4c5fab;
    color: #fff;
}


@keyframes fadeIn {
    from {top: 20%; opacity: 0;}
    to {top: 100; opacity: 1;}
    
}

@-webkit-keyframes fadeIn {
    from {top: 20%; opacity: 0;}
    to {top: 100; opacity: 1;}
    
}

.wrapper {
    animation: fadeIn 1000ms ease;
    -webkit-animation: fadeIn 1000ms ease;
    
}

h1 {
    font-size: 50px;
    font-family: "Noto Sans Display", sans-serif;
    margin-bottom: 0;
    line-height: 1;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 767px){
    h1 {
        font-size: 40px;
    }
}

p {
    text-align: center;
    margin: 20px;
    font-family: "Noto Sans Display", sans-serif;
    font-weight: normal;
    font-size: 24px;
    
}

.icons {
    text-align: center;
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.icons svg {
    width: 26px;
    height: 26px;
    fill: #fff;
    transition: all 200ms ease;
}

.icons a {
    background: transparent;
    height: 40px;
    width: 40px;
    padding: 13px;
    margin: 0 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    transition: all 200ms ease;
    text-decoration: none;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
}

.icons a:hover {
    background-color: #fff;
}

.icons a:hover svg {
    fill: #4c5fab;
}
