/* THIS IS THE START OF CSS DO NOT EDIT THIS UNLESS YOU KNOW WHAT YOU ARE DOING */
/* THIS WILL MESS UP THE DESIGN AND LAYOUT OF SITE */
* {
    box-sizing: border-box;
}

body {
    background-image: url("../img/bg.jpg");
    font-family: 'Ruda', sans-serif;
}

/* THIS CONTROLS DOTTED OVERLAY */
.overlay {
    background: rgba(0, 0, 0, 0.35) url(../img/overlay.png) repeat;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}

.menu {

    display: inline-flex;
    width: 100%;

}

.menu img {
    width: 30em;
    height: auto;
    padding-top: 2%;
    padding-left: 5%;
    transition: all .2s ease-in-out;
}

.menu img:hover {
    transform: scale(1.1);
}

.links {
    margin: 95px 200px;

}

.links a {
    font-family: 'Ubuntu', sans-serif;
    color: white;
    text-decoration: none;
    font-size: 30px;
    padding: 20px 50px 20px 50px;
    border: 2px solid white;
    margin: 0px 10px;
    background: rgba(0, 0, 2, 0.63);
    border-radius: 5px;


}

.links a:hover {
    color: rgba(207, 207, 207, 0.733);
    background: rgba(0, 0, 2, 0.63);
    border-radius: 5px;

}

hr {
    border: 2px solid rgb(5, 5, 104);
}

.head-text {
    padding-top: 50px;
}

.head-text h1 {
    font-family: 'Ubuntu', sans-serif;
    text-align: center;
    font-size: 60px;
    color: white;
    text-shadow: 2px 2px 5px black;
}

.dark-text {
    padding-top: 24px;
    padding-bottom: 24px;

    background: rgba(0, 0, 0, 0.137);
    margin: 0px 32%;
}

.dark-text h3 {
    color: white;
    font-family: 'Ubuntu', sans-serif;
    text-shadow: 2px 2px 5px black;
    text-align: center;
    font-size: 30px;
    letter-spacing: 2px;
}

.colorchange {
    color: rgb(88, 186, 211);
}

.button {
    padding-top: 40px;

}

button {
    transition: all .4s ease-in-out;
    margin: 0 auto;
    display: block;
    padding: 20px 30px 20px 30px;
    font-family: 'Ubuntu', sans-serif;
    background: rgb(88, 186, 211);
    border: 2px solid black;
}

button:hover {
    cursor: pointer;
    background: rgb(78, 146, 163);
    border: 2px dashed black;
    transform: scale(1.1);
}

.moto {
    color: rgb(231, 231, 231);
    font-family: 'Ubuntu', sans-serif;
    text-shadow: 2px 2px 5px black;
    text-align: center;
    font-size: 30px;
    letter-spacing: 2px;
    padding-top: 20px;
}

.cp {
    padding-top: 40px;
    text-align: center;
    color: rgb(255, 255, 255);
}

/* HAPPY NEW YEAR BANNER */
.new-year-banner {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 20;
}

.new-year-banner img {
    max-width: 360px;      /* Adjust if needed */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new-year-banner img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.8);
}
