body{
    background-image: url(download.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background-color: rgba(57, 58, 57, 0.7);
}

.icons ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

li{
    color: antiquewhite;
    font-size: 20px;
    display: inline;
    padding: 20px;
}

a{
    text-decoration: none;
    color: antiquewhite;
    font-size: 20px;
}

.logo{
    margin-right: 0;
}
.centre{
    width: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.logo1{
    font-size: 20px;
}
.content{
    margin: 20px 0;
    font-size: 20px;
    color: antiquewhite;
    text-align: center;
    line-height: 1.5;
}
.button{
    width: 150px;
    height: 40px;
    padding: 15px 30px;
    font-size: 18px;
    text-align: center;
    color: antiquewhite;
    background-color: rgba(57, 58, 57, 0.8);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.button:hover{
    background-color: rgba(57, 58, 57, 1);
    transform: scale(1.25);
}