* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    width: 100%;

    position: relative;

    background: url('wallpaper.jpg');
    background-size: cover;
    background-position: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: rgba(0, 0, 0, .5);
    z-index: -1;
}


.logo {

    width: 60%;
    max-width: 650px;
    height: auto;
}

img {
    width: 100%;
    height: auto;
}

.socials {
    margin-top: 24px;
}

.socials ul {
    display: flex;
    list-style: none;
}

.socials ul li {
    margin: 0 12px;
}

.socials a {
    font-size: 24px;
    color: white;
    transition: color .3s ease-in-out;
}

.socials a:hover {
    color: #FF1616;
}