/* Creating varible */
:root {
    --white: #fff;
    --black: #1e1e1e;
    --blue: #243CFC;
}

main {
    width: 100%;
    height: calc(100vh - 40px);
    background-color: pink;
    background: url(../img/background.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom, center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-intro h1 {
    font-size: 96px;
    line-height: 106px;
    color: var(--white);
}

.play-button {
    border-radius: 12px;
    font-size: 18px;
    display: block;
    color: var(--white);
    background-color: var(--blue);
    padding: 10px 20px;
    width: fit-content;
    margin-top: 30px;
}

.main-slogan h1 {
    font-size: 96px;
    line-height: 106px;
    color: var(--blue);
}

.server-button {
    border-radius: 12px;
    font-size: 18px;
    display: block;
    color: var(--blue);
    background-color: var(--white);
    padding: 10px 20px;
    width: fit-content;
    margin-top: 30px;
    margin-left: 10px;
}

button:hover {
    cursor: pointer;
    border-radius: 12px;
}

main .main-div-line {
    position: relative;
    width: 10px;
    height: 50vh;
    background-position: center;
    /* background: rgb(219, 85, 83); */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgb(36, 60, 252) 100%);
    margin: 0 40px;
}