* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    transition: 0.7s ease;
}

.container {
    display: flex;
    height: 100vh;
    width: 100%;
}

.screen {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.screen-width {
    width: 50%;
}

.screen-1 {
    background-color: #EEE3CB;
    color: #9BABB8;
}

.screen-2 {
    background-color: #9BABB8;
    color: #EEE3CB;
}

.screen-wide {
    width: 83%;
}

.screen-thin {
    width: 27%;
}

.text {
    font-size: 100px;
}

.btn {
    height: 50px;
    width: 200px;
    margin: 20px 0px 0px 0px;
    border: none;
    background-color: #D7C0AE;
    font-size: 30px;
    color: white;
    cursor: pointer;
    border-radius: 40px;
    transition: 0.2s ease;
    border: 5px solid #d3b8a0
}

.btn:hover {
    transform: scale(1.2);
    background-color: white;
    color: #D7C0AE;
    border: 5px solid #ebebeb;
}