@font-face {
    font-family: 'Hillstone-Bxd5';
    src: url('./fonts/Hillstone-Bxd5.otf') format('truetype');
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.blankspace{
    height: 400px;
}

.backgroundimage{
    background-image: url(images/6506391.jpg); 
    height: 200vh; 
}
.welcomemain {
    font-family: 'Hillstone-Bxd5', sans-serif;
    margin-top: 100px;
    border-radius: 30px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
    height: 300px;
}

@-webkit-keyframes glow {
    from {
      text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px aqua, 0 0 40px aqua, 0 0 50px aqua, 0 0 60px aqua, 0 0 70px aqua;
    }
    
    to {
      text-shadow: 0 0 20px #fff, 0 0 30px turquoise, 0 0 40px turquoise, 0 0 50px turquoise, 0 0 60px turquoise, 0 0 70px turquoise, 0 0 80px turquoise;
    }
  }
  
.maintitlewelcome {
    color: #fff;
    text-align: center;
    animation: glow 1s ease-in-out infinite alternate;
    font-size: 60px;
}

.language {
    box-shadow: rgb(243, 243, 244) 0 0 90px 33px;
    height: 600px;
    max-width: 1000px;
    border-radius: 30px;
    margin: auto;
    text-align: center;
    padding: 20px;
}

.selection {
    font-family: 'Hillstone-Bxd5', sans-serif;
    color: black;
    text-shadow: 0 0 90px 33px rgb(8, 8, 8);
    text-align: center;
    padding-top: 40px;
}

.container1 {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.flag-scotland,
.flag-italy {
    border-radius: 500px;
    width: 60%;
    height: 155px;
    cursor: pointer;
    transition: border 0.3s ease;
}

.flag-italy {
    width: 70%;
    height: 150px;
}

.selected {
    border: 5px solid rgb(238, 243, 245);
    box-shadow: #C99D76 0 0 90px 33px;
}

.redirect-button {
    display: block;
    margin: 40px auto;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Hillstone-Bxd5', sans-serif;
    color: black;
    border-radius: 50px;
    background-color: transparent;
    border: 2px black solid;
    padding: 15px;
    box-shadow: rgb(243, 243, 244) 0 0 90px 33px;
}

.redirect-button:hover {
    color: #C99D76;
    background-color: rgba(8, 8, 8, 0.4);
}

/* Media Queries for small screens */
@media (max-width: 768px) {
    .backgroundimage{
        background-image: url(images/6506391.jpg); 
        background-size: 350%;
        background-position-x:center;
        height: 100vh; 
    }

    .blankspace{
        height: 180px;
    }

    .welcomemain {
        margin-top: 50px;
        height: auto;
        padding: 20px;
    }

    .maintitlewelcome {
        font-size: 35px;
    }

    .language {
        height: auto;
        padding: 20px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .selection {
        font-size: 24px;
        padding-top: 20px;
    }

    .flag-scotland {
        width: 45%;
        height: 80px;
    }

    .flag-italy {
        width: 30%;
        height: 80px;
    }

    .redirect-button {
        margin-top: 20px;
        padding: 10px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .backgroundimage{
        background-image: url(images/6506391.jpg); 
        background-size: 350%;
        background-position-x:center;
        height: 118vh; 
    }

    .blankspace{
        height: 180px;
    }

    .welcomemain {
        margin-top: 20px;
        padding: 10px;
    }

    .maintitlewelcome {
        font-size: 35px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .selection {
        font-size: 18px;
        padding-top: 10px;
    }

    .language {
        margin-left: 5%;
        margin-right: 5%;
    }

    .flag-scotland {
        width: 45%;
        height: 80px;
    }

    .flag-italy {
        width: 45%;
        height: 80px;
    }

    .redirect-button {
        padding: 8px;
        font-size: 12px;
    }
}