body {
    background-color: black;
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 20px 0px 20px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.visually-hidden-focusable {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  
.visually-hidden-focusable:active,
.visually-hidden-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

h1 {
    text-align: center;
    color: aliceblue;
    font-size: 2.5rem;
}

#site {
    min-height: 100vh;
}

#atirat {
    max-width: 800px;
    width: 100%;
    background-color: rgb(37, 37, 37);
    color: aliceblue;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.2);
    text-align: center;
}

figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

video {
    max-width: 70%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.2);
}

figcaption {
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: justify;
    margin-top: 15px;
}

@media (max-width: 600px) {
    figcaption {
        font-size: 1rem;
    }

    #atirat {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    video {
        max-width: 100%;
    }
}

a {
    margin-top: 10px;
    margin-bottom: 10px;
    display: inline-block;
    background-color: #161e4e;
    padding: 12px 20px;
    text-decoration: none;
    color: white;
    border-radius: 10px;
    font-size: 1rem;
    letter-spacing: 1px;
}

a:hover {
    background-color: #12193e;
}

a:active {
    background-color: #131834;
}

footer { 
    min-width: 100vw;
    background-color: #0e1432;
    padding: 10px 0px 10px 0px;
}

footer p {
    text-align: center;
    margin: 0px;
    color: aliceblue;
    line-height: 0.8;
    font-size: 1rem;
}