@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sora', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    background: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url('srmgoat.jpg');
    background-size: cover;
    background-position: center;
}

.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.home-button img {
    max-height: 70px;
    margin-right: 60px;
}

.logo {
    max-height: 40%;
    max-width: 15%;
    margin-left: 40px; /* Set the maximum height of the logo */
}
.container {
    text-align: center;
    color: #fff;
    margin-top: -90px;
}

.container h1 {
    margin-bottom: 20px;
}

.buttons-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    
}

 
button, a.info-button {
    display: block; /* Add this line to make the anchor tag a block-level element */
    width: 100%;
    padding: 20px;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    background-color: #0e2181;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    animation: slideIn 1s ease-out;
}
a{
    text-decoration: none;
}
button:hover {
    background-color: #be9d18;
}

.a info-button {
    padding: 20px;
    height: 100%;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    background-color: #0e2181;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 20px;
}

.a info-button:hover {
    background-color: #be9d18;
}