@import url("https://fonts.googleapis.com/css2?family=Alata&display=swap");

body {
    font-family: "Alata", sans-serif;
}

.navbar {
    background: white;
}

.navbar-brand .navbar-title {
    display: inline-block;
    position: relative;
    top: 5px;
}

.nav-item:hover {
    box-shadow: 0px 23px 1px -19px green;
}

.hero-section {
    margin-top: 180px;
    padding-left: 20px;
    padding-right: 20px;
}

.hero-image img {
    width: 300px;
}

.hero-desc {
    margin-top: 90px;
}

.sosmed {
    display: inline-block;
    margin: 0 40px 0 0;
    border: 2px solid #000;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    text-align: center;
}

.sosmed:hover {
    background-color: green;
}

.sosmed a {
    font-size: 30px;
    color: #000;
}

.hero-desc h3 {
    color: #4a8442;
    font-weight: bold;
}

.data-section {
    margin-top: 150px;
    background-color: rgba(0, 0, 0, 0.038);
}

.box-data {
    display: inline-block;
    margin: 100px 20px 100px 20px;
    width: 200px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.box-data:active {
    box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.3);
}

.box-data i {
    font-size: 35px;
}

.box-data h3 {
    color: #4a8442;
    font-size: 35px;
    font-weight: bold;
}

.title-alumni {
    margin-top: 200px;
}

.box-alumni {
    display: inline-block;
    position: relative;
    margin-bottom: 200px;
    top: 200px;
    width: 330px;
    height: 400px;
    box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.3), -3px -3px 4px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.box-alumni img {
    width: 150px;
    border-radius: 100%;
    border: 5px solid #4a8442;
    position: relative;
    top: -70px;
}

.box-alumni .quotes {
    margin-top: -30px 0px;
    margin-bottom: 60px;
}

.box-alumni h5 {
    font-weight: bold;
}

.box-alumni p.desc {
    font-size: 13px;
}

.box-alumni .desc {
    font-size: 10px;
}

.footer {
    width: 100%;
    padding-top: 40px;
    margin-top: 250px;
    background: rgba(0, 0, 0, 0.038);
    text-align: center;
}

.footer p {
    font-size: 17px;
}

.footer a {
    margin-top: 20px;
    padding-bottom: 40px;
    color: #000;
    text-decoration: none;
    display: inline-block;
}

@media (min-width: 1400px) {
    .navbar-brand h6 {
        font-size: 20px;
    }

    .hero-image img {
        width: 600px;
    }
}