body {
    font-family: "VT323", monospace;
    background-color: black;
    color: white;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

#title{
    font-size: 40px;
    color: white;
    background-color: black;
    padding: 15px;
    margin-left: 400px;
    margin-right: 400px;
    border-radius: 50px;
    border:#FF008A 5px dotted;
    text-align: center;
}

#dates{
    font-size: 24px;
    text-align: center;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 100px);
}

main section {
    display: flex;
    align-items: center;
    justify-content: center;
}

img {
    width: 350px;
    height: 350px;
    margin-left: 40px;
    margin-right: 40px;
    margin-bottom: 200px;
    border-radius: 10px;
}

img:hover{
    border: #FF008A 6px solid;
    transform: scale(1.001);
}

nav {
    padding-bottom: 10px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

ul {
    display: flex;
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
    text-align: center;
    font-size: 18px;
}

button{
    background-color: white;
    color: black;
    width: 90px;
    margin: 5px;
    padding: 15px;
    border: 0;
    border-radius: 20px;
}

button:hover{
    background-color: #FF008A;
    color: white;
    cursor: pointer;
}

.hidden{
    visibility: hidden;
}

.visible{
    visibility: visible; 
}