html {
    scroll-behavior: smooth;
}

body {
    background-color: white;
    opacity: 1;
    background-image:  linear-gradient(#444cf7 2px, transparent 2px), linear-gradient(90deg, #444cf7 2px, transparent 2px), linear-gradient(#444cf7 1px, transparent 1px), linear-gradient(90deg, #444cf7 1px, white 1px);
    background-size: 50px 50px, 50px 50px, 10px 10px, 10px 10px;
    background-position: -2px -2px, -2px -2px, -1px -1px, -1px -1px;
}

.mobile-menu{
    font-size: 2vw;
}

nav{
    position: fixed;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-family: 'Phudu', cursive;
    font-family: 'Rammetto One', cursive;
    font-size: 1vw;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background-color: #444cf7;
    border-color: #1b1f65;
    box-shadow: -5px 5px 15px #1b1f65;
    height: 5vw;
}

a{
    text-decoration: none;
    color: white;
}

a:hover{
    color: rgb(123, 123, 200);
    transition: color 0.5s;
}


.titlecenter{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10vw;
}

.titlebox{
    background-color: #444cf7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 20%;
    padding: 2vh;
    border-style: solid;
    border-width: 5px;
    border-color: #1b1f65;
    box-shadow: -10px 10px #1b1f65;
}

.pagetitle {
    text-align: center;
    font-family: 'Phudu', cursive;
    font-family: 'Rammetto One', cursive;
    font-size: 6vw;
    transform: skew(-4deg, 0deg) rotate(-4deg);
    color: white;
    text-shadow: -8px 8px #1b1f65;   
}

#s1, #s2, #s3, #s4, #s5, #s6, #s7, #s8, #s9, #s10{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2%;
}

.s1textbox{
    display: flex;
    flex-direction: column;
    width: 50%;
    background-color: #444cf7;
    border-style: solid;
    border-width: 5px;
    border-color: #1b1f65;
    box-shadow: -10px 10px #1b1f65;
}

.s1title{
    font-family: "bello-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    font-size: 7vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2%;
    text-shadow: -8px 8px #1b1f65;
    transform: skew(0deg, 0deg) rotate(-15deg);
    text-decoration: white solid underline;
}

.s1text{
    font-family: Arial, Helvetica, sans-serif;
    text-transform: capitalize;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2%;
    color: #1b1f65;
    font-size: 2.5vw;
    text-align: center;
    background-color: #e5e5f7;
    opacity: 1;
    background-image:  linear-gradient(#d1d3ff 2px, transparent 2px), linear-gradient(90deg, #d1d3ff 2px, transparent 2px), linear-gradient(#d1d3ff 1px, transparent 1px), linear-gradient(90deg, #d1d3ff 1px, #ffffff 2px);
    background-size: 50px 50px, 50px 50px, 10px 10px, 10px 10px;
    background-position: -2px -2px, -2px -2px, -1px -1px, -1px -1px;
}

img{
    max-width: 50%;
}

@media screen and (min-width:798px) {
    .mobile-menu{
        display: none;
    }
}

@media screen and (max-width:798px) {
    .desktop-menu{
        display: none;
    }
    .s1text{
        font-size: 3.5vw;
    }
    img{
        max-width: 100%;
    }
    #s1, #s2, #s3, #s4, #s5, #s6, #s7, #s8, #s9, #s10{
        flex-direction: column;
    }
    #s2,#s4, #s6, #s8, #s10{
        flex-direction: column-reverse;
    }
    .s1textbox{
        width: 80%;
    }
}