@font-face {
    font-family: ShortBaby;
    src: url(ShortBaby-Mg2w.ttf);
}
body{
    font-family: "Sedan SC", sans-serif;
    background-color: #f5f5f5;
}

main{
    display: grid;
    grid-template-columns: 1fr 5fr;
    gap: 20px;
    padding: 20px;
}

.left{
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: sticky;
    top: 20px;;
    background-color: black;
    height: 90vh;
    border-radius: 30px;
    /* align-items: center; */
}

.profile{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 10px 25px 10px;   
}

.profile img{
    width: 75%;
    height: 75%;
    border-radius: 50%;
}
.profile img:hover{
    scale: 1.05;
    transition: 0.2s;
    cursor: pointer;
}

.profile p{
    font-size: 1.75em;
    color: white;
    font-weight: 250;
}

.profile p:hover{
    scale: 1.05;
    transition: 0.2s;
    cursor: pointer;
}

.nav{
    display: flex;
    padding-right: 20px;
    color: white;
    margin-left: 30px;
    align-items: center;
    margin-bottom: 25px;

    
}

.nav:hover{
    color: goldenrod;
    scale: 1.05;
    transition: 0.2s;
}

.nav > a{
    padding-left: 20px;
    font-weight: 400;
    font-size: 1em;
    color: white;
    text-decoration: none;
    /* font-family: ; */

}

.nav > a:hover{
    color: lightgray;
}

.right{
    /* background-color: aquamarine; */
    display: flex;
    flex-direction: column;
    gap: 20px;

}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

header > h1{
    margin-left: 50px;
    margin-top: 10px;
    font-size: 35px;
    font-weight: 700;
}

header > h1:hover{
    /* color: goldenrod; */
    scale: 1.05;
    transition: 0.2s;
}

header > input{
    margin-right: 5%;
    width: 250px;
    height: 25px;
    border-radius: 12px;
    border: 0px solid white;
    background-color: white;
    padding-left: 7px;
}

header > input:hover{
    /* border: 2px solid green; */
    /* box-shadow: 0 0 5px rgb(15, 219, 15); */
    scale: 1.05;
    transition: 0.1s;
}

header > input:focus{
    outline: none;
    border: 2px solid green;
    box-shadow: 0 0 5px rgb(15, 219, 15);
    transition: 0.1s;
}

header > input::placeholder{
    color: gray;
    font-size: 1em;
    /* padding-left: 7px;     */
    /* font-family: "sedan SC", sans-serif; */

}

#board{
    width: 91%;
    height: auto;
    border-radius: 25px;
    background-color: white;
    margin-left: 15px;
    padding: 15px;
}

#board img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

article h2{
    text-align: center;
    text-decoration: underline;
}

article h2:hover{
    text-decoration-color: goldenrod;
    scale: 1.05;
    transition: 0.2s;
}

#data > h2{
    text-align: center;
    text-decoration: underline;

}
#data > h2:hover{
    text-decoration-color: goldenrod;
    scale: 1.05;
    transition: 0.2s;
}

.card-container{
    display: flex;
    justify-content: space-between;
    gap:20px;
    flex-wrap: wrap;
    font-family: "ShortBaby", sans-serif;
    margin: 25px 50px 5px 15px;
}

.card{
    height: 100px;
    width: 180px;
    border-radius: 20px;
}
.card1{
    background-color: #ddefe0;
    border: 2px solid #7dd88c;
    /* box-shadow: 0 0 10px #7e3333; */
}

.card2{
    background-color: #f9e0d6;
    border: 2px solid #f4b8a1;
}
.card3{
    background-color: #efdada;
    border: 2px solid #e3a9a9;
}
.card4{
    background-color: #dee0ef;
    border: 2px solid #a9b2f1;
}

.card:hover{
    transform: scale(1.05);
    transition: 0.2s;
    box-shadow: 0 0 10px #a35252;
    background: radial-gradient(circle, rgba(238, 174, 202, 1), rgba(148, 187, 233, 1) 100%);
}

.card > i{
    margin-left: 150px;
    margin-top: 20px;

}

.cardHead{
    margin: 0;
    margin-left: 10px;
    font-size: 18px;
    
}

.cardData{
    margin-top: 4px;
    font-size: 16px;
    margin-left: 10px;
}

#users{
    margin-top: 50px;
    /* margin-left: 70px; */
    width: 100%;

}

#users > h2{
    text-align: center;
    text-decoration: underline;
    margin-top: 20px;
}

#users > h2:hover{
    text-decoration-color: goldenrod;
    scale: 1.05;
    transition: 0.2s;
}

table{
    width: 95%;
    margin: auto;
    border-collapse: collapse;
    border-radius: 20px;
    background-color: white;
}

table th, table td{
    padding: 15px 100px;
    text-align: left;
}
table th{
    background-color: #a39696;
    font-weight: 600;

}
table tbody tr:nth-child(even){
    background-color: #f9f9f9;
}
table tbody tr:hover{
    background-color: #eaeaea;
}

#schedule{
    background-color: white;
    border-radius: 30px 0 0 30px;
    height: 450px;
    margin-top: 80px;
    overflow-y: scroll;
    max-height: 400px;
    margin-left: 70px;
}

.schedule-head{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 25px;
}

.schedule-head > h3{
    margin-left: 20px;
    font-weight: 600;
    font-size: 25px;
    margin-top: 0;
    padding-top: 0;
    /* text-decoration: underline; */
}

.schedule-head p{
    margin-right: 20px;
    font-weight: 400;
    font-size: 15px;
    margin-top: 0;
}

.meets{
    margin-top: 0;
    margin-bottom: 1px;
    margin-left: 10px;

}

.head{
    font-size: 16px;
    font-weight: 600;
}
.detail{
    font-size: 16px;
    font-weight: 400;
    color: #999999;
}

.schedule-details div:nth-child(odd){
    margin-left: 20px;
    margin-bottom: 10px;
    border-left: 3px solid #9bdd7c;
}

.schedule-details div:nth-child(even){
    margin-left: 20px;
    margin-bottom: 10px;
    border-left: 3px solid #947cdd;
}

.contact-inner{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
    margin-left: 20px;
    margin-bottom: 20px;
}
iframe{
    border-radius: 30px;

}

.feedback-form{
    background-color: white;
    border-radius: 30px;
    padding: 20px;
}

.feedback-form > h2{
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
}

.feedback-form input[type="text"],
.feedback-form input[type="email"],
.feedback-form textarea{
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.feedback-form textarea{
    resize: vertical;
    height: 150px;
}

.feedback-form input[type="submit"]{
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}
footer{
    width: 100%;
    background-color: black;
    border-radius: 10px;
    color: white;
    padding: 20px 0;
    text-align: center;
}
footer div{
    margin-bottom: 10px;
}

footer a{
    color: white;
    font-size: 24px;
    margin: 0 10px;
    /* font-size: 20px; */
}
footer a:hover{
    color: rgb(153, 139, 139);
    scale: 1.05;
    transition: 0.2s;
    text-decoration: none;
}

footer a:first-child{
    margin-left: 0;
}

footer a:last-child{
    margin-right: 0;
}

