* {
    padding: 0;
    margin: 0;
}

body {
    background-color: #191919;
    color: white;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10vh;
}
.logo {
    margin: 4vh auto 0;
}
.logo img {
    height: 50vh;
    width: 50vh;
}

.social {
    /* background-color: #80c342a8; */
    display: flex;
    justify-content: center;
    gap: 3vh;
}

.icon-container {
    position: relative;
    width: 35px;
    height: 35px;
    border: 1px solid transparent;
    transition: border 0.3s ease-in-out;
}

.icon-container:hover {
    /* border-top: 3px solid transparent; */
    transform: translateY(1px);

}

.social img {
    position:absolute;
    top:50%;
    left:50%;
    margin-top :-38%;
    margin-left:-38%;   
    width: 3.3vh;
}

.slogan {
    margin: 3vh auto 0;
    font-size:larger
}

.footer {
    color: grey;
    margin: 3px auto 0;
    font-size: small;
}
.footer a {
    color: grey;
    text-decoration: none;
}
.footer a:hover {
    color: white;
}