/* ----------------------------------------------------------
                    GENERAL
---------------------------------------------------------- */

:root {
    --vh: 100vh;
}

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

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Satoshi-Variable', sans-serif;
    font-display: swap;
    font-style: normal;
    background-color: #000111;
    color: #fff;
    display: flex;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
}

h1 {
    font-size: 50px;
    line-height: 55px;
    font-weight: 300;
    margin-bottom: 20px;
    text-transform: lowercase;
}

p {
    font-size: 16px;
    font-weight: 200;
    line-height: 22px;
    margin-bottom: 20px;
}

a {
    color: #fff;
    text-decoration: none;
    margin-right: 50px;
}

.link {
    font-weight: 200;
}

.link:hover {
    text-decoration: underline;
}

.landing {
    width: 50%;
    padding: 50px 70px 50px 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.banner {
    background-image: url('../img/diz_logo_wallpaper_3D.png');
    background-size: cover;
    background-position: center;
    width: 50%;
    height: 100%;
}

.landing__text {
    margin: 40px auto;
}

.logo {
    width: auto;
    height: 65px;
}

.extrabold {
    font-weight: 900;
}

.dizigote {
    margin-bottom: 0;
}

/* --------------- Buttons --------------- */

.button {
    background-color: #2B1991;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    overflow: hidden;
    padding: 13px 20px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: 0;
}

.button:hover {
    color: #000111;
}

.button:active {
    color: #000111;
}

.button span {
    position: relative;
    z-index: 2;
}

.button:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    transition: all 0.3s ease;
}

.button:hover:after {
    background-color: #F1C3B8;
    width: 100%;
}

.button:active:after {
    background-color: #F1C3B8;
    width: 100%;
}

/* --------------- Smartphones (portrait and landscape) --------------- */

@media only screen and (max-device-width : 480px) {

    body {
        flex-direction: column-reverse;
    }

    .landing {
        width: 100%;
        padding: 20px;
    }

    .banner {
        width: 100%;
    }

    h1 {
        font-size: 30px;
        line-height: 35px;
    }
}