html{font-size:100%;}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserra",sans-serif;
    font-weight: 200px;
    color: #ffff;
    line-height: 2.5rem;
    list-style: none;
    list-style-type: none;
    outline: none;
    text-decoration: none;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(0, 0, 0);
    height: 100vh;
    width: 85%;
    margin: 0 auto;
}

.logo{
    display: flex;
    position: relative;
    justify-content: center;
    height: 50%;
    width: min(900px, 100%);
}

img{
    position: absolute;
    bottom: 0;
    border: 0;
    width: 100%;
    height: auto;
    margin-left: 20px;
}

.bottom{
    display: flex;
    position: relative;
    flex-direction: column;
    align-items:center;
    justify-content: space-around;
    height: 20%;
    width: 100%;
}

.construction{font-size: 2.25rem;}

a{
    font-size: 2rem;
    letter-spacing: 3px;
    text-align: center;
    text-decoration: none;
    transition: 0.4s ease;
}
a:hover{
    color: #8fd2ff;
    transform: scale(1.0);
}
.otherscreen{display: flex;}
.smallscreen{display: none;}

footer {
    height: auto;
    position: absolute;
    bottom: 0;
}

@media screen and (max-width:767px) {
    html{font-size: 70%;}
    .otherscreen {display: none;}
    .smallscreen {display: flex;}
} 

@media screen and (max-height:767px) and (orientation: landscape){
    html{font-size: 70%;}
   img {
        height: max(50%,80px);
        width: auto;
    }
    .otherscreen {display: flex;}
    .smallscreen {display: none;}
} 

@media screen and (max-width:480px), screen and (max-height:480px) {
   html{font-size: 50%;}
   .copyright {font-size: 1.5rem;}
}

@media screen and (max-width:400px), screen and (max-height:400px) {
    html{font-size: 40%;}
    .copyright {font-size: 1.5rem;}
 }