body {
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    overflow: hidden
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #00eeff, #008059);
    padding: 10px 20px;
    width: 100%;
   
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.menu-items a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    font-size: 18px;
}

.menu-items a:hover {
    text-decoration: underline;
}

.logo img {
    height: 50px;
    margin-left: 10%;
}

.container {
    width: 90%;
    height: auto;
    flex: 1;
    display: flex;
    align-items: center;

    padding: 15px;
    margin: 30px;

}

.container h1 {

    font-size: 5vw;
    font-weight: 900;
    font-family: 'Baloo Tammudu 2';
    text-transform: uppercase;

    text-transform: uppercase;
    margin: 20px;
    text-align: left;
    color: #008059;

    margin-left: 10%;
}

.container p {

    font-size: 2vw;
    font-weight: 600;
    font-family: 'Baloo Tammudu 2';
    text-transform: uppercase;
    text-transform: uppercase;
    line-height: 50px;
    text-align: left;
 
    margin-left: 10%;
}
.container img {
    height: 400px;
    box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.712);
}
.container a {
    padding: 10px 20px;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10%;
    background-color: #0051ff;
    width: 150px;
}



.a:hover {
    background-color: #0051ff;
}

.a:active {
    background-color: #0063f7;
}

footer {
    text-align: center;
    padding: 10px;
    font-size: 1.5em;
    color: white;
    height: 10px;
}