*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* border: 1px solid red; */
}

body {
    font-family: 'Blinker', sans-serif;
    font-weight: 400;
    color: #457a00;
    text-align: center;
    display: flex;
    justify-content: center; 
    align-items: center;
    min-height: 100vh;
    max-width: 100vw;
    background-color: rgba(69, 122, 0, 0.1);
}


h1 {
    font-size: 5.75rem;
    font-weight: 700;
    line-height: 1.1;
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    transform: scale(1.1); 
    opacity: 0.8;         
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.logo-text {
    font-size: 3rem; 
}

.main-container {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.socials-container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.fa-brands{
    font-size: 3rem;
}

.img-div{
    display: flex;
    align-items: center;
    justify-content: center;
}

img{
    width: 3.125rem;
    height: 3.125rem;
}

h1,p {
    padding: 0 10px;
}

@media (max-width: 800px) {
    h1 {
        font-size: 2.35rem;
    }

    img{
        width: 1.5rem;
        height: 1.5rem;
    }

    .logo-text {
        font-size: 1.5rem; 
    }
    
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    p {
        font-size: 0.9rem;
    }
}