html{
    scroll-behavior: smooth;
}
body::-webkit-scrollbar {
    width: 0.25rem;
}

body::-webkit-scrollbar-track {
    background-color: #082757;
}

body::-webkit-scrollbar-thumb {
    background-color: #0e408b;
    border-radius: 5%;
}

body {
    text-align: center;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #001532;
}
.main-container{
    height: 90vh;
    background-color: #ffffff;
    margin: 5vh 5vh 0vh 5vh;
    border-radius: 20px 20px 0px 0px;
    border: 10px dashed #a5e4ff;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}
.left{
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    flex-direction: column;
}
.right{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    background-color: #a5e4ff;
}
.instructions{
    background: radial-gradient(#00b2ff, #00b2ff);
    border-radius: 0px 0px 20px 20px;
    margin: 0vh 5vh 5vh 5vh;
    padding-top: 5vh;
    color: #ffffff;
    font-weight: bolder;
}
.instructions h1{
    padding: 15px;
    background-color: #001532;
}
.instructions div{
    margin-left: 25px;
    margin-right: 25px;
    padding: 15px;
    border-radius: 13px;
    font-size: 1.3vw;
    background-color: #001532;
    text-align: center;
    align-items: center;
}
.nav-btn {
    background: transparent;
    display: inline-block;
    position: relative;
    color: #001532;
    border: none;
    margin: 5px;
    height: calc(10vh - 20px);
    font-size: 2vw;
    font-weight: bold;
    cursor: pointer;
    margin-right:15px;
    border-radius: 10px;
    transition: all 1s ease-in-out;
}

.nav-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #001532;
    transition: transform 0.25s ease-out;
}
  
.nav-btn:hover::after {
    transform: scaleX(1);
}
.logo{
    height: 20vh;
    transition: transform 0.1s ease-in-out;
}
.logo:hover{
    transform: scale(1.1);
}
.title {
    font-size: 8.5vw;
    margin: 20px 0;
    z-index: 5;
    animation: titleColourChange 4s infinite;
    transition: all 0.5s;
    background: linear-gradient(-45deg, #c2edff, #00b2ff, #0159b8, #00b2ff);
	background-size: 200% 200%;
	animation: gradient 9s ease infinite;
    font-family: "DynaPuff";
    font-weight: bolder;
	background-clip: text;
	-webkit-background-clip: text;
    -moz-background-clip: text;
	color: transparent;
}
@keyframes gradient{
    0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.contact-button {
    background-color: #00b2ff;
    color: #001532;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    animation: fadeInBottom 1s forwards 0.5s;
    transition: all 0.5s;
    border: solid 3px #001532;
}

.contact-button:hover {
    background-color: #c2edff;
    box-shadow: inset 0 1.5em 0em 0em #c2edff,
        inset 0 -1.5em 0em 0em #c2edff;
    color: #001532;
    border: solid 3px #001532;
    transform: scale(1.1);
}

.footer{
    color: #c2edff;
    padding-bottom: 25px;
}

.footer img{
    height: 40px;
    padding: 10px;
    transition: all 0.5s;
}

.footer img:hover{
    filter:brightness(1.2);
}