body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
}

.background-image {
    height: 100vh;
    width: 100vw;
    background-image: url('./img/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .background-image {
        background-size: 100% 100%;
        background-size: cover;
    }
}

.fs-50 {
    font-size: 50px;
}

.fs-20 {
    font-size: 20px;
}

a i {
    color: white;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}

a:hover i {
    transform: scale(1.2);
}