@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Inter&family=Vina+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

html{
    scroll-behavior: smooth;
}

body{
    overflow-x: hidden;
    background-color: #f4fffd;


}

main.container{
    margin-top: 200px;
    width: 80vw;
    /* height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* align-self: center; */
    padding: 30px;
    justify-self: center;
    flex-direction: column;
    /* border: solid pink 2px; */
    border: solid green 1px;

    border: solid rgb(0, 0, 0) 1px;
    box-shadow: 12px 12px 25px rgb(0, 0, 0, .212);
    background-color: #fff;
    border-radius: 5px;
    -webkit-animation: 1s fadeInTop both;
    -o-animation: 1s fadeInTop both;
    -moz-animation: 1s fadeInTop both;
    animation: 1s fadeInTop both;
}

h1{
    font-size: 30pt;
    font-weight: 900;
    margin-bottom: 20px;
    font-family: 'Staatliches', sans-serif;
    display: flex;
    flex-wrap: wrap;
    text-align: center;

}

.content-wrapper{
    /* border: solid red 1px; */
    min-width: 50%;
    padding: 50px 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    flex-wrap: wrap;
    text-align: center;

}

.topicsBox{
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.cad-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
    width: 100%;
    /* height: 12%; */
    margin-top: 25px;
    background: linear-gradient(to right, rgb(14, 129, 223), rgba(25, 60, 214, 0.903));
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: white;
    font-size: 13pt;
    flex-wrap: wrap;
}  

@media (max-width: 320px){
    main.container{
        width: 95vw;
    }
} 
