@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap');

body {
    background-color: #392F5A;
    color: white;
    font-family: 'Roboto', sans-serif;
}

div {
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: space-between;
    width: 1000px;
    align-items: center;
    margin: auto;
    min-height: 60vh;

}



a{
    color: #FFF8F0;
    width: 250px;
    padding: 25px 40px;
    margin-left: 25px;
    border: 3px solid #fff8f0;
    text-decoration: none;
    text-align: center; 
    display: inline-block;
}

a:hover {
    background-color: #fff8f0;
    color: #392F5A;
}

h1 {
    text-align: center;
    margin-top: 100px;
}

@media only screen and (max-width: 1000px) {
    div {
        flex-direction: column;
         align-items: stretch;
         justify-content: flex-start;
         width: 100%;
    }

    a {
        margin-left: auto;
        margin-right: auto;
    }

    a:link, a:visited {
        margin-top: 35px;
        margin-left: auto;
        margin-right: auto;
    }
}