@font-face {
    font-family: "Roboto";
    src: url(../font/Roboto-Regular.ttf);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Roboto";
    src: url(../font/Roboto-Medium.ttf);
    font-weight: medium;
    font-style: normal;
}

@font-face {
    font-family: "Roboto";
    src: url(../font/Roboto-Bold.ttf);
    font-weight: bold;
    font-style: normal;
}

::-webkit-scrollbar {
    display: none;
}

.main {
    background-color: #101012;
    font-family: "Roboto";
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main_div {
    width: 90vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 7.5vh;
    padding-top: 5vh;
    padding-bottom: 5vh;
    padding-left: 5vw;
    padding-right: 5vw;
}

.main_div_name {
    font-size: 5vh;
    background: linear-gradient(to right,#EF7326, #F01084);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    text-align: center;
}

.main_div_subheading {
    font-size: 3vh;
    color: #FFFFFF80;
    text-align: center;
}

.main_div_form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 40vh;
}

.main_div_form_input {
    font-family: "Roboto";
    color: #FFFFFFE6;
    font-size: 2vh;
    background-color: transparent;
    padding: 2.5vh;
    width: 75%;
    height: 100%;
    margin-top: 1.5vh;
    margin-bottom: 2vh;
    box-sizing: border-box;
    border-radius: 0.5vh;
    border-width: 0.1vh;
    border-color: #F0108432;
    background-color: #101012;
}

.main_div_submit {
    font-family: "Roboto";
    background: linear-gradient(to right,#EF7326, #F01084);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-style: solid;
    border-radius: 0.5vh;
    border-color: #F0108432;
    border-width: 0.1vh;
    padding: 1.5vh;
    font-size: 2vh;
    cursor: pointer;
    background-color: #101012;
}

.main_div_cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.main_div_cards_row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}

.main_div_cards_row_item {
    display: flex;
    flex-direction: column;
    align-items: start;
    row-gap: 2.5vh;
    width: 20%;
    border-style: solid;
    border-radius: 0.5vh;
    border-color: #F0108432;
    border-width: 0.1vh;
    padding: 1vh;
    margin: 0.5vh;
}

.main_div_cards_row_item_heading {
    color: #EF7326;
    font-size: 2vh;
}

.main_div_cards_row_item_text {
    color: #FFFFFF80;
    font-size: 1.75vh;
}

.discord_popup {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 2.5vh;
    bottom: 0;
    right: 0;
    margin: 5vh;
    text-decoration: none;
    cursor: pointer;
    align-self: end;
}

.discord_popup_text {
    text-decoration: none;
    font-size: 2vh;
    color: #EF7326;
}

.discord_popup_icon {
    width: 4vw;
    height: 4vh;
    color: #F01084;
}

@media (max-width: 768px) {

    .main_div_form_input {
        width: 90%;
    }

    .main_div_submit {
        font-size: 2.5vh;
    }

    .main_div_cards {
        row-gap: 2vh;
    }

    .main_div_cards_row {
        flex-direction: column;
        row-gap: 2vh;
    }

    .main_div_cards_row_item {
        width: 90%;
    }

    .discord_popup {
        align-self: center;
    }

    .discord_popup_text {
        text-decoration: none;
        font-size: 2.5vh;
        color: #EF7326;
    }

    .discord_popup_icon {
        width: 8vw;
        height: 8vh;
        color: #F01084;
    }
}