@font-face {
    font-family: 'BeaufortforLOL';
    src: url('./fonts/BeaufortforLOL-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'D-DIN';
    src: url('./fonts/D-DIN.ttf') format('truetype');
}

.container {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    background-color: black;
    font-family: 'BeaufortforLOL' !important;
    background-image: url('./images/bg.png');
    background-repeat: no-repeat;
    background-size: cover;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 4%;
}

.divider {
    width: 80%;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: 100%;
}

.slogan {
    font-size: 60px;
    font-weight: 700;
    line-height: 76px;
    color: #FFF;
}

.text {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    color: #FFF;
    width: 671px;
    text-align: center;
}

.text-span {
    font-weight: 900;
    color: #AF9158;
}

.download-container {
    margin-top: 40px;
    padding: 2px;
    width: 200px;
    height: 50px;
    background: linear-gradient(180deg, #91E1DC 0%, #0C9CA1 50%, #1F9EBD 100%);
    transition: .5s;
    position: relative;
    z-index: 0;
}

.download-container:hover {
    transform: scale(1.1);
    transition: .5s;
}

.download {
    font-family: 'D-DIN';
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 24px;
    line-height: 30.96px;
    letter-spacing: -2%;
    font-weight: 500;
    background-color: #1C2125;
    text-decoration: none;
    color: #FFF;
}
