
body{
    display: flex;
    margin: 0;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    background-position: center;
    background-image: url(beans.gif);
    background-color: rgb(21, 21, 108);
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 1;
    animation: fadeIn 2s ease;
    transition: opacity 2s ease;
}
body.fade-out {
    opacity: 0;
}
@keyframes fadeIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}
.pixelify-sans-Pixel_Font {
  font-family: "Pixelify Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
nav{
    display: flex;
    position:relative;
    gap: 40px;
    justify-content: center;
}
nav a {
    text-decoration: none;
    color: white;
    font-size: clamp(1.1rem, 2vw, 2.5rem);
    font-family: "Pixelify Sans", sans-serif;
    transition: transform 0.3s ease;
}
nav a:hover{
    transform: scale(1.1);
    opacity: 0.9;
}
.square{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left:25%;
    top: 2%;
    width: 50%;
    height: 70px;
    max-height: 100px;
    background-color: rgba(236, 231, 231, 0);
    border-radius: 10px;
    
    
}
.Square1 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Pixelify Sans", sans-serif;
    flex-direction: column;
    margin-top: 150px;
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    background-color: rgba(236, 231, 231, 0.4);
    border-radius: 10px;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.25);
}
.Square2 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 200px;
    margin-bottom: 70px;
    font-family: "Pixelify Sans", sans-serif;
    bottom: 30%;
    padding: 20px;
    min-height: 200px;
    width: 50%;
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    background-color: rgba(236, 231, 231, 0.4);
    border-radius: 10px;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.25);
}
.Download {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Pixelify Sans", sans-serif;
    flex-direction: column;
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    background-color: rgba(236, 231, 231, 0.4);
    border-radius: 10px;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.25);

}
.Block1 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Pixelify Sans", sans-serif;
    flex-direction: column;
    margin-top: 150px;
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    background-color: rgba(236, 231, 231, 0.4);
    border-radius: 10px;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.25);
}
.Block2 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Pixelify Sans", sans-serif;
    flex-direction: column;
    margin-top: 50px;
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    background-color: rgba(236, 231, 231, 0.4);
    border-radius: 10px;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.25);
}
.Certs {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Pixelify Sans", sans-serif;
    flex-direction: row;
    margin-top: 150px;
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    background-color: rgba(236, 231, 231, 0.4);
    border-radius: 10px;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.25);
    gap: 20px;
}
.Certs img {
    width: 500px;
    height: auto;
}