@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

html{
    overflow: hidden;
}

body{
    overflow-x: hidden;
}

.main_section{
    background-color: #040404;
    height: 100vh;
    width: 100vw;
    color: #bcc9cc;
    font-family: 'VT323', sans-serif;
    display: flex;
    justify-content: space-around;
    padding-top: 20vh;
}

.main_elements{
    width: 30vw;
    height: 50vh;
    border: 1px solid #bcc9cc;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: space-around;
    font-size: 200%;
}

.main_elements p{
    letter-spacing:5px;
    font-size: 50px;
}

.main_elements a{
    transition: all 0.3s;
    color: #bcc9cc;
}

.main_elements a:hover{
    color: #0d99f0;
    text-shadow: 1px 2px 7px rgba(13, 153, 240, 1);
    transform: translateY(-2px);
}

@media (max-width: 420px){
    html{
        overflow-y: auto;
        overflow-x: hidden;
    }

    .main_section{
        flex-direction: column;
        padding-top: 5vh;
    }

    .main_elements{
        width: 80vw;
        height: 30vh;
        margin-left: 40px;
        margin-right: 10px;
    }

    .main_elements p{
        font-size: 40px;
    }
}