@font-face {
    font-family: Cooper;
    src: url(fonts/cooper.woff);
    src: url(fonts/cooper.woff2);
}
@font-face {
    font-family: Arial Black;
    src: url(fonts/arial-black.woff);
    src: url(fonts/arial-black.woff2);
}


body {
    margin: 0px;
}

header {
    font-family: Cooper;
    text-align: center;
    font-size: 5vh;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
    margin-top: 0.9vh;
    
}
header a {
    text-decoration: none;
    color: black;
    transition: all 0.5s ease;
}
header a:hover {
    color: rgb(51, 51, 51);
}

.main-container {
    margin-top: 1vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2vh;
}
.phy {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.phy img {
    width: 90vw;
    height: auto;
    max-width: 700px;
    transition: all 0.5s ease;
}
.phy p {
    position: absolute;
    font-family: Arial Black;
    font-size: 4vh;
    text-align: center;
    color: white;
    transition: all 0.7s ease;
    margin: 2vw;
}
.phy:hover p {
    color: #ffd800;

}
.phy:hover img {
    filter: brightness(70%);
}
.info {
    margin-top: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.info img {
    width: 90vw;
    height: auto;
    transition: all 0.5s ease;
    max-width: 700px;
}
.info p {
    position: absolute;
    font-family: Arial Black;
    font-size: 4vh;
    text-align: center;
    color: white;
    transition: all 0.7s ease;
    margin: 2vw;
    
}
.info:hover p {
    color: #ffd800;

}
.info:hover img {
    filter: brightness(70%);
}
.links {
    margin-top: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.links img {
    width: 90vw;
    height: auto;
    transition: all 0.5s ease;
    max-width: 700px;
}
.links p {
    position: absolute;
    font-family: Arial Black;
    font-size: 4vh;
    text-align: center;
    color: white;
    transition: all 0.7s ease;
    margin: 2vw;
    
}
.links:hover p {
    color: #ffd800;

}
.links:hover img {
    filter: brightness(70%);
}
.footnote {
    margin-top: 10px;
    margin-bottom: 10px;
}
.footnote p {
    font-family: Cooper;
    font-size: 15px;
    color: black;
    display: flex;
    justify-content: center;
    
}