@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

* {
    padding: 0;
    margin: 0;
    transition: all 0.3s ease-in-out;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: "Open Sans", sans-serif;
    background-color: #060c21;
    background-image: url("images/background.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px, 15px;
}

.logoContainer {
    margin: 1rem 0;
    position: relative;
    height: 200px;
    aspect-ratio: 1;
    border-radius: 50%;
    margin-bottom: 2rem;
}

.logo {
    position: relative;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: #fff solid 5px;
    margin-top: 5%;
}

.greetings {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    text-shadow: 2px 2px #000;
    text-transform: uppercase;
}

.about {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: white;
    text-align: center;
    padding: 0 10px;
    
}

.icons {
    text-decoration: none;
    margin: 5px;
}
.icons a {
    text-decoration: none;
    margin: 5px;
}
.icons .img {
    max-width: 30px;
    max-height: 30px;
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 20px 20px 20px;
    gap: 10px; /* This sets the gap between the buttons */
}

.links a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* This sets the gap between the icon and the text */
    margin: 5px 100px   ;
    height: 50px;
    width: 100%; /* Changed to 100% for responsiveness */
    max-width: 500px; /* Maximum width for larger screens */
    border-radius: 15px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 1rem; /* Adjusted font size for responsiveness */
    font-weight: 600;
    text-align: center;
}

.links a:hover {
    filter: drop-shadow(0px 10px 1px rgba(0, 0, 0, 0.2));
}

.links i {
    font-size: 1.0rem; /* Adjusted icon size for responsiveness */
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    background-color: #000;
}

.footertext {
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    main {
        padding: 10px 20px; /* Increase padding for better spacing on smaller screens */
    }

    .logoContainer {
        margin-bottom: 1rem; /* Decrease margin for the logo container */
    }

    .greetings {
        font-size: 1.5rem;
    }

    .about {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    .links{
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px; /* This sets the gap between the buttons */
    }

    .links a {
        font-size: 1.0rem;
        height: 45px;
        width: 100%; /* Changed to 100% for responsiveness */
    }

    .links i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    main {
        padding: 10px 20px; /* Increase padding for better spacing on smaller screens */
    }

    .logoContainer {
        margin-bottom: 1rem; /* Decrease margin for the logo container */
    }

    .greetings {
        font-size: 1.2rem;
    }

    .about {
        font-size: 0.8rem;
        padding: 0 5px;
    }

    .links{
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px; /* This sets the gap between the buttons */
    }


    .links a {
        font-size: 1rem;
        height: 40px;
        width: 100%; /* Changed to 100% for responsiveness */
    }

    .links i {
        font-size: 1rem;
    }
}
