* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body{
    height: 100vh;
    background-color: #0f0f0f;
}

li{
    list-style: none;
}

a{
    text-decoration: none;
    font-family: 'Minecraft', sans-serif;                                      
    color: #fff;
    font-size: 1rem;
    background: linear-gradient(to right, rgb(4, 79, 192), rgb(110, 149, 255));
    background-clip: text;
    -webkit-background-clip: text;
    text-align: center;
    color: transparent;
}

a:hover {
    color: rgb(0, 81, 255);
    text-shadow: 0 0 5px rgb(8, 11, 219);
}

header{
    position: relative;
    padding: 0 2rem;
}

.navbar {
    width: 100%;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo a{
    font-size: 1.5rem;
}

.navbar .links{
    display: flex;
    gap: 2rem;
}

.navbar .toggle_btn{
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.action_btn{
    position: relative;
    z-index: 1;
    background: linear-gradient(to right, rgba(111, 160, 201, 0.788), rgba(6, 117, 207, 0.4));
    color: #ffffff;
    padding: 0.5rem 1rem;
    border: 1px solid #3e7cf0;
    outline: none;
    border-radius: 10px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: scale 0.4s ease, box-shadow 0.3s ease;
}

.action_btn:hover{
    scale: 1.15;
    color: #fff;
    box-shadow: 0 0 20px rgb(12, 40, 167);
}

.action_btn:active{
    scale: 0.95;
}

section#hero {
    height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-align: center;
    color: #fff;
    margin-top: 10px;
    line-height: 1.5;
}

h1 {
    margin-bottom: 20px;
}

footer {
    text-align: left;
    color: #fff;
    background-color: #0f0f0f;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.hero-buttons {
    margin-top: 20px;
}

.hero-buttons button {
    margin: 0 10px;
}

.additional-box {   
    background: linear-gradient(to right, rgba(111, 160, 201, 0.788), rgba(9, 127, 223, 0.4));
    color: #ffffff;
    padding: 1rem;
    border: 1px solid #3e7cf0;
    outline: none;
    width: 350px;
    height: 200px;
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: scale 0.2s ease, box-shadow 0.3s ease;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

h4 {
    text-align: left;
    margin: 0;
    color: rgb(160, 160, 160);
    font-weight: lighter;
}

.additional-box .hero-buttons {
    margin-left: -10px;
}

body {
    position: relative;
}

#snowCanvas {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

@media only screen and (max-width: 600px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 1rem;
    }

    .navbar .logo {
        order: 1;
        margin-bottom: 0.5rem;
        font-size: 1.2rem;
    }

    .navbar .links {
        order: 2;
        margin-bottom: 1rem;
    }

    .navbar .toggle_btn {
        order: 3;
        margin-bottom: 1rem;
    }

    .navbar .action_btn {
        order: 4;
        margin-top: 1rem;
    }
}
