@font-face {
    font-family: "Blair";
    src: url("blair.ttf") format("truetype");
}

html,body{
    background-color: black;
    color: white;
    font-family: 'EB Garamond', serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content{
    text-align: center;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 0;
}

img{
    height: 450px;
    margin-bottom: 60px;
}

h3{
    text-transform: uppercase;
    line-height: 1.3;
}

p{
    margin-bottom: 25px;
}

a{
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    line-height: normal;
    height: 60px;
    padding: 0 50px 5px;
    font-family: 'Blair';
    border: solid 1px white;
    border-radius: 30px;
    text-transform: uppercase;
    transition: .3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    white-space: pre;
    margin-bottom: 20px;
}

a:hover{
    background-color: white;
    color: black;
}

@media screen and (max-width: 640px) {
    .content{
        font-size: 18px;
    }
    img{
        height: 400px;
        margin-bottom: 60px;
    }
    a{
        height: 50px;
        padding: 0 45px 3px;
    }
}