body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #2d61b5;
    text-align: right;
    padding: 100px;
    background-image: url('images/background.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

h1 {
    color: #fae20c;
}

h2 {
    color: #0bfc03;
}
img {
    width: 300px;
    border-radius: 10px;
    margin-top: 20px;
}

button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #007acc;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

a:link {
    color: antiquewhite;
    background-color: transparent;
    text-decoration: none;
}

a:visited {
    color: pink;
    background-color: transparent;
    text-decoration: none;
}
/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
}

.hero {
    position: relative;
    margin-bottom: 2rem;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    width: 100%;
    padding: 0 1rem;
}

    /* For better text visibility on images */
    .hero-text h1,
    .hero-text p {
        text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    }

.logo-svg {
    width: 200px; /* Default size */
    height: 50px;
}

@media (max-width: 768px) {
    .logo-svg {
        width: 150px;
        height: 37.5px;
    }
}
.logo img {
    /* Default size for desktop */
    height: 50px; /* Maintains aspect ratio */
    width: auto; /* Width adjusts automatically */
    transition: height 0.3s ease; /* Smooth resizing */
}

/* Tablet sizes */
@media (max-width: 992px) {
    .logo img {
        height: 40px;
    }
}

/* Mobile sizes */
@media (max-width: 768px) {
    .logo img {
        height: 30px;
    }
}

/* Very small devices */
@media (max-width: 480px) {
    .logo img {
        height: 25px;
    }
}
