* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #1f3a32;
    background-image: url('fts-logo2.png');
    background-size: 45%;
    background-repeat: no-repeat;
    background-position: 50% 25%;
    height: 100vh;
    overflow: hidden;
}
.fts {
    margin: auto;
    width: 200px;
    max-width: 90%;
}
.fts img {
    width: 200px;
    max-width: 90%;
    position: fixed;
    bottom: 8%;
}
@media (orientation: portrait) {
    body {
        background-size: 70%;
    }
    .fts, .fts img {
        width: 300px;
    }
    .fts img {
        bottom: 15%;
    }
}

