body {
    margin: 10px 0px;
    background-color: rgb(167, 237, 255);
    background-image: linear-gradient(0, rgb(229, 255, 196), rgb(240, 240, 240));
    background-image: url("assets/pictures/background2.jpg");
    background-size: cover;
}

nav {
    display: flex;
    border:1.5px solid rgb(153, 255, 158);
    border-radius: 5px;
    font-weight:700;
    flex-wrap: wrap;
    justify-content: space-between;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: rgb(91, 219, 52);
    box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.18);
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.18);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.18);
}

.navSchoolName{
    font-weight:700; 
    margin-left:20px;
}
.navSchoolName:hover{
    color:white;
    transition:all .5s ease;
}

.menu1 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 10px;
    font-weight: 800;
    font-size: larger;
}

.menu2 {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    margin: 10px;
    gap: 20px;
}

.tombol {
    /* background-color: greenyellow; */
    padding: 4px;
    border-radius: 15px;
    /* border: 1px solid; */
    /* border-color: greenyellow; */
    width: 120px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tombol:hover {
    /* border: 1px solid; */
    border-color: white;
    color: white;
    background-color: rgb(0, 179, 0);
    transition: all 0.5s ease;
    cursor: pointer;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    gap: 30px;
    margin-top: 30px;
}

.card {
    width: 300px;
    height: 350px;
    background-color: antiquewhite;
    padding: 20px;
    margin-top: 50px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0.9;
    box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.18);
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.18);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.18);
}

.card2 {
    width: 200px;
    height: 270px;
    background-color: rgb(255, 248, 239);
    padding: 20px;
    margin-top: 50px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0.9;
    box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.18);
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.18);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.18);
}
.card2 h1 {
    font-size:20px;
}
a{
    text-decoration:none;
    color:black;
}
.buatWebsite {
    background-color: greenyellow;
    border-color: greenyellow;
    padding: 10px 30px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
}

.buatWebsite:hover {
    border: 1px solid;
    background-color: rgb(133, 235, 0);
    /* font-size:large; */
    rotate: 1.5deg;
    transition: all .5s ease;
}

footer {
    background-color: rgb(199, 255, 126);
    display: flex;
    position: fixed;
    bottom: 0;
    width: 100%;
}