body {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(black 10%, rgb(0, 115, 255) 90%);
    overflow: hidden;
}

h1 {
    margin-top: 1vh;
    color: white;
    font-size: 10vh;
}

p {
    margin-top: -5vh;
    width: 40%;
    padding: 2vh;
    color: white;
    font-size: 2vh;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 1vh black;
    z-index: 10;
}

.img1 {
    position: absolute;
    top: 15vh; 
    right: 0; 
    width: 25%;
    box-shadow: 0 0 5vh black;
    animation: clide 1s forwards;
}

.img2 {
    position: absolute;
    top: 15vh; 
    left: 0; 
    width: 25%;
    box-shadow: 0 0 5vh black;
    animation: slide 1s forwards;
}

.img3 {
    position: absolute;
    bottom: 0; 
    width: 40%;
    box-shadow: 0 0 5vh black;
    animation: clide2 1s forwards;
}



@keyframes slide {
    0%{
        left: -100%;
    }
    100%{
        left: 0%;
    }
}


@keyframes clide {
    0%{
        right: -100%;
    }
    100%{
        right: 0%;
    }
}


@keyframes clide2 {
    0%{
        bottom: -100%;
    }
    100%{
        bottom: 0%;
    }
}

.img-height {
    min-height: 50vh;
    object-fit: cover;
}
ul {
    display: flex;
    gap: 3vh;
    padding: 0;
}

a {
    color: white;
    text-decoration: none;
}

li {
    display: flex;
    align-items: center;
    padding: 1vh 2vw;
    gap: 1vh;
    box-shadow: 0 0 1vh black;
    border: 0.2vh solid #00325e;
    background-color: #00325e;
    font-size: 3vh;
    transition: 0.25s ease-in-out;
}

li:hover {
    background-color: #a60000;
    box-shadow: 0 0 5vh black;
    transform: scale(1.2);
}


@media (max-width: 550px) {
    h1 {
        margin-top: 1vh;
        font-size: 5vh;
    }
    
    p {
        margin-top: 30vh;
        width: 90%;
        padding: 2vh;
        font-size: 2vh;
        background-color: rgba(0, 0, 0, 0.4);
    }
    
    .img1 {
        top: 28vh; 
        right: 0; 
        width: 25%;
    }
    
    .img1.mobile {
        width: 30%;
    }

    .img2 {
        top: 28vh; 
        left: 0; 
        width: 25%;
    }
    
    .img3 {
        bottom: 2vh; 
        width: 40%;
    }
}
