
@charset "UTF-8";
html {
    font-size: 100%;
    scroll-padding-top: 200px;

}

body {
    background-size: cover;
    background-attachment: fixed;
    background-color: rgb(223, 242, 255);
    font-family: 'Kaisei Decol', serif;
    
}

header {
    background-image: url(./img/header.png) ;
    background-position: center top;
    background-repeat: repeat-x;
    top: 0px;
    position: sticky;   
    height: 21vh;
    padding-left: 50px;
    width: 100%;
}
nav a {
    text-decoration: none;
    font-size: 1.5rem;
    font-family: 'Cherry Bomb One', cursive;
    color: #344653;
    margin-right: 10px;
    line-height: 10px;
    
}

a {
    display: inline-block;
    transition: .3s;
    -webkit-transform: scale(1);
    transform: scale(1);
    color: rgb(24, 24, 24);;
  }

a:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

.showcase {
    padding-top: 0px;
}

main {
    margin-left: 50px;
    margin-right: 50px;
    
}

h1 {
    font-size: 1rem;
    font-family: 'Cherry Bomb One', cursive;
    color: #202020;
    
}

h2 {
    font-size: 1.5rem;
    color: #ffffff;
    background-color: rgb(194, 214, 245);
    border-radius: 30px;
    padding: 10px;
    margin-top: 50PX;

}

h3 {
    font-size: 1.5rem;
    color: #868686;
    border-bottom: dashed #868686;
    margin-top: 15px;
    margin-bottom: 15px;    
    
}

p {
    color: #555555;
    font-size: 1rem;
    line-height: 1.5;
}

a {
    text-decoration: none;
    font-size: 1.3rem;
    font-family: "Zen Antique", serif;
}

img {
    border-radius: 30px;
    margin-top: 10px;
    margin-right: 20px;
    margin-bottom: 5px;
    max-width: 100%;

}

table {
    font-size: 1rem;
    padding: 20px;
    margin: 10px;
    
}



td, th {
    padding: 10px 20px;
}

th {
    border-radius: 30px;
    background-color: rgb(241, 245, 255);
    width: 13rem;
    font-size: 1.2rem;
}


footer {
    background-image: url(./img/footer.png) ;
    background-position: center bottom;
    background-repeat: repeat-x;
    height: 50vh;
    text-align: center;
    padding-top: 350px;
}

.nowrap {
    white-space: nowrap;
}

