@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Krona+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body, html {
    height: 100%;
    width: 100%;
    background: rgb(6,0,101);
    background: linear-gradient(0deg, rgb(17, 7, 146) 0%, rgb(27, 77, 177) 35%, rgba(0,164,198,1) 100%);
    Background-attachment: fixed;
    overflow-x: hidden;
    /* margin: 0 0 80px; 
    for footer */
}

#logo_image {
    border-radius: 50%;
    display: block;
    margin: auto;
    border: 2px solid #000000;
    box-shadow: 4px 4px 5px rgba(15, 15, 15, 0.5);
    -moz-box-shadow: 4px 4px 5px rgba(15, 15, 15, 0.5);
    -webkit-box-shadow: 4px 4px 5px rgba(15, 15, 15, 0.5);
    -khtml-box-shadow: 4px 4px 5px rgba(15, 15, 15, 0.5);
}

#div_logo {
    padding-top: 2%;
}

#div_title {
    width: 100%;
    max-width:700px;
    margin: auto;
    text-align: center;
    cursor: default;
}

#div_text {
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
    width: 90%;
    max-width:1250px;
    margin: auto;
    text-align: center;
    cursor: default;
    color: rgba(242, 242, 242, 1);
    text-shadow: 1px 1px rgba(15, 15, 15, 0.5);
}

.class_title {
    font-size: 40px;
    font-family: 'Varela Round', sans-serif;
    color: #F2F2F2;
    text-shadow: 2px 2px rgba(15, 15, 15, 0.5);
}

#div_buttons {
    width: 90%;
    max-width:720px;
    margin: auto;
}

.class_button:not(:first-child) {
    margin-top: 2%;
}

.class_button, .class_button_soon {
    width: 100%;
    font-family: 'Krona One', sans-serif;
    padding-top: 2vh;
    padding-bottom: 2vh;
    color: rgba(242, 242, 242, 1);
    margin-bottom: 5%;
    cursor: pointer;
}

.class_button {
    background-color:rgba(17, 109, 185, 0.5);
    border: 1px solid rgba(242, 242, 242, 1);
}

.class_button_soon {
    background-color:rgba(17, 109, 185, 0.5);
    border: 1px solid rgba(225, 225, 225, 0.7);
}

.class_button:hover, .class_button_soon:hover {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.class_button:hover {
    color: rgba(17, 109, 185, 1);
    background-color: rgba(242, 242, 242, 1);
    border: 1px solid rgba(242, 242, 242, 1);
}

.class_button_soon:hover {
    color: rgba(17, 109, 185, 0.8);
    background-color: rgba(225, 225, 225, 0.7);
    border: 1px solid rgba(225, 225, 225, 0.7);
}

button:after {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

/*
footer {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100px;
    width: 100%;
    background-color: rgba(40, 40, 40, 1)
}
*/