:root {
    --accent: #f0d5b7;
}

@font-face {
    font-family: "Josefin";
    src: local("JosefinSans-Bold"), local("JosefinSans-Bold"),
        url("../fonts/JosefinSans-Bold.ttf");
    font-weight: bold;
}

* {
    overflow: hidden;
    margin: 0;
    padding: 0;
}

h1 {
    font-family: "Josefin";
    font-weight: bold;
}


.main {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url("../img/absurd-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    gap: 2rem;
    padding: 20px 20px;
}

.logo-ctn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-ctn img {
    width: 280px;
}

.description-ctn {
    color: white;
    text-align: center;
}

.links-ctn {
    display: flex;
    gap: 1rem;
}

.sm-link {
    display: flex;
}

.sm-link svg {
    width: 60px;
    height: 60px;
    transition: all 0.2s ease;
    cursor: pointer;
    fill: white;
}

.sm-link:hover svg {
    fill: var(--accent);
}

@media only screen and (max-width: 600px) {
    * {
        overflow: auto;
    }
}